home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / DROPFILE.ZIP / DEMO / DRAGDROP.DFM / DRAGDROP.txt
Encoding:
Text File  |  1996-08-10  |  2.7 KB  |  134 lines

  1. object Form1: TForm1
  2.   Left = 342
  3.   Top = 165
  4.   Width = 655
  5.   Height = 384
  6.   Caption = 'Drag and Drop Viewer'
  7.   Font.Color = clBlack
  8.   Font.Height = -12
  9.   Font.Name = 'Arial'
  10.   Font.Style = []
  11.   Position = poScreenCenter
  12.   ShowHint = True
  13.   PixelsPerInch = 96
  14.   TextHeight = 15
  15.   object Panel1: TPanel
  16.     Left = 0
  17.     Top = 0
  18.     Width = 647
  19.     Height = 33
  20.     Align = alTop
  21.     Caption = 'Panel1'
  22.     TabOrder = 0
  23.     OnResize = Panel1Resize
  24.     object ComboBox1: TComboBox
  25.       Left = 4
  26.       Top = 5
  27.       Width = 637
  28.       Height = 23
  29.       Hint = 'List of dropped files'
  30.       ItemHeight = 15
  31.       TabOrder = 0
  32.       OnChange = ComboBox1Change
  33.     end
  34.   end
  35.   object Memo1: TRichEdit
  36.     Left = 0
  37.     Top = 33
  38.     Width = 647
  39.     Height = 324
  40.     Hint = 'Right click for action menu'
  41.     Align = alClient
  42.     Font.Color = clBlack
  43.     Font.Height = -12
  44.     Font.Name = 'Courier New'
  45.     Font.Style = []
  46.     ParentFont = False
  47.     PopupMenu = PopupMenu1
  48.     ScrollBars = ssBoth
  49.     TabOrder = 1
  50.     WordWrap = False
  51.   end
  52.   object FontDialog1: TFontDialog
  53.     Font.Color = clWindowText
  54.     Font.Height = -13
  55.     Font.Name = 'System'
  56.     Font.Style = []
  57.     Device = fdBoth
  58.     MinFontSize = 0
  59.     MaxFontSize = 0
  60.     Left = 440
  61.     Top = 112
  62.   end
  63.   object PopupMenu1: TPopupMenu
  64.     OnPopup = PopupMenu1Popup
  65.     Left = 496
  66.     Top = 64
  67.     object FileDropEnabled1: TMenuItem
  68.       Caption = 'FileDrop Enabled'
  69.       Checked = True
  70.       GroupIndex = 1
  71.       ShortCut = 0
  72.       OnClick = FileDropEnabled1Click
  73.     end
  74.     object N2: TMenuItem
  75.       Caption = '-'
  76.       GroupIndex = 1
  77.       ShortCut = 0
  78.     end
  79.     object Font1: TMenuItem
  80.       Caption = 'Font...'
  81.       GroupIndex = 1
  82.       ShortCut = 0
  83.       OnClick = Font1Click
  84.     end
  85.     object WordWrap1: TMenuItem
  86.       Caption = 'Word Wrap'
  87.       GroupIndex = 1
  88.       ShortCut = 0
  89.       OnClick = WordWrap1Click
  90.     end
  91.     object N3: TMenuItem
  92.       Caption = '-'
  93.       GroupIndex = 1
  94.       ShortCut = 0
  95.     end
  96.     object PrinterSetup1: TMenuItem
  97.       Caption = 'Printer Setup...'
  98.       GroupIndex = 1
  99.       ShortCut = 0
  100.       OnClick = PrinterSetup1Click
  101.     end
  102.     object Print1: TMenuItem
  103.       Caption = 'Print...'
  104.       GroupIndex = 1
  105.       ShortCut = 0
  106.       OnClick = Print1Click
  107.     end
  108.     object N1: TMenuItem
  109.       Caption = '-'
  110.       GroupIndex = 1
  111.       ShortCut = 0
  112.     end
  113.     object Exit1: TMenuItem
  114.       Caption = 'Exit'
  115.       GroupIndex = 1
  116.       ShortCut = 0
  117.       OnClick = Exit1Click
  118.     end
  119.   end
  120.   object PrintSetup: TPrinterSetupDialog
  121.     Left = 496
  122.     Top = 112
  123.   end
  124.   object DropFile1: TDropFile
  125.     OnDropFile = DropFile1DropFile
  126.     Left = 440
  127.     Top = 64
  128.   end
  129.   object PrintDialog1: TPrintDialog
  130.     Left = 552
  131.     Top = 112
  132.   end
  133. end
  134.